﻿* {
  box-sizing: border-box;
}

/* Create two unequal columns that float next to each other */
.column {
  float: left;
  padding: 10px;
}

.left {
  width: 70%;
}

.right {
  width: 30%;
}

/* Clear floats after the columns */
.row::after {
  content: "";
  display: table;
  clear: both;
}

.video-bottom {
  background: linear-gradient(to right, #1a1a1a 0px, #1a1a1a 30px, #124e84 30px, #124e84 100px);
  display: block;
  content: "";
  height: 5px;
  margin: -6px 0 0 0;
  width: 100%;
}

.fa-user-tag {
  font-size: .75em;
  color: #171717;
  margin-right: 7.5px;
  vertical-align: 2px;
}

h4::after {
  background: #1b76c7;
  bottom: 10px;
  display: block;
  content: "";
  height: 2px;
  margin: 10px 0 20px;
  width: 45px;
}

h2::after {
  background: linear-gradient(
    to right,
    #1a1a1a 0,
    #1a1a1a 10px,
    #124e84 10px,
    #124e84 80px
  );
  bottom: 10px;
  display: block;
  content: "";
  height: 2px;
  margin: 10px 0;
  width: 80px;
}

body {
  background-color: #fefefe;
  background-image: -webkit-repeating-radial-gradient(center center,
      rgba(0, 0, 0, 0.1),
      rgba(0, 0, 0, 0.1) 1px,
      transparent 1px,
      transparent 100%);
  background-image: -moz-repeating-radial-gradient(center center,
      rgba(0, 0, 0, 0.1),
      rgba(0, 0, 0, 0.1) 1px,
      transparent 1px,
      transparent 100%);
  background-image: -ms-repeating-radial-gradient(center center,
      rgba(0, 0, 0, 0.1),
      rgba(0, 0, 0, 0.1) 1px,
      transparent 1px,
      transparent 100%);
  background-image: repeating-radial-gradient(center center,
      rgba(0, 0, 0, 0.1),
      rgba(0, 0, 0, 0.1) 1px,
      transparent 1px,
      transparent 100%);
  -webkit-background-size: 6px 6px;
  -moz-background-size: 6px 6px;
  background-size: 6px 6px;
}

.more-info {
  background-color: #eeeef0;
  border: 1px solid #dfdfe1;
  padding: 10px;
}

ul.yes li::marker {
  content: "✔ ";
  color: #1b76c7;
  font-size: 1.2em;
}

ul.no li::marker {
  content: "✘ ";
  color: #1b76c7;
  font-size: 1.2em;
}

.hero {
  padding: 0;
  width: 100%;
  position: relative;
  overflow: hidden;
  transition: transform .1s, visibility .1s ease-in;
}

img.influxer {
  max-width: 250px;
  min-width: 200px;
  margin-top: 20px;
}

.caption {
  font-size: 14px;
  text-align: center;
  margin-top: 15px;
  font-style: italic;
  margin: 20px 0;
}

.links {list-style-type: none; background: #fdfdff; margin: 0 0 15px 0 !important; padding: 0 !important;}
.links li:not(:first-child) {border-top: 0;}
.links li {padding: 7.5px 7.5px 7.5px 10.5px; border: 1px solid #dfdfe1; color: #1a1a1a;}
.links a {text-decoration: none !important; color: #1a1a1a; transition-duration: .25s;}
.links a:hover {padding-left: 5px; color: #124e84;}

.staff tr td p {color: #1a1a1a; padding-left: 12.5px; transition-duration: .25s;}
.staff tr:hover .mug {border: 3px solid #1b76c7;}
.staff tr:hover a {color: #1b76c7;}
.staff tr td a {color: #124e84; text-decoration: none;}

.mug {
  border: 3px solid #124e84;
  max-width: 100px;
  margin: 0 auto 0 auto;
  transition-duration: .25s;
}

.mug:hover {
  border: 3px solid #1b76c7;
}

@media screen and (max-width: 899px) {
  .column {
    width: 100%;
  }
}